blob: d6a83cd56b4d42a3c5d1c8409a695298f3900d74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<script context="module">
export const load = ({
page: {
params: { id }
}
}) => ({ props: { id } });
</script>
<script>
import { _ } from 'svelte-i18n';
import { getTag } from '$/stores/tags';
import ErrorBlock from '$/components/error_block/error_block.svelte';
import Loader from '$/components/loader/loader.svelte';
import Tag from '$/components/tag/tag.svelte';
export let id;
$: store = getTag(id);
$: tag = $store.data;
</script>
<svelte:head>
<title>{id}, {$_('tag.title')}</title>
</svelte:head>
{#if $store.loading}
<Loader />
{/if}
{#if $store.error}
<ErrorBlock message={$_('tag.error.unavailable')} />
{/if}
{#if tag}
<Tag {tag} />
{/if}
|